home *** CD-ROM | disk | FTP | other *** search
- Prompt "%N.%S> "
- path add sys:system sys:utilities s:
- ;
- ; Test for RAD (Recoverable RAM disk), use RAM otherwise
- ;
- failat 11
- assign > nil: RAD: exists
- if warn
- cd ram:
- ;
- ; Copy common applications to RAM
- ;
- if NOT EXISTS :s/Common_Apps
- echo "Creating Application Directory in RAM..."
- makedir ram:s
- makedir ram:s/Common_Apps
- copy all s:Common_Apps to :s/Common_Apps quiet
- copy rexx:RExecute.rexx to :RExecute.rexx quiet
- echo "...copy completed."
- endif
- else
- cd rad:
- ;
- ; Copy common applications to RAD
- ;
- if NOT EXISTS :s/Common_Apps
- echo "Creating Application Directory in RAD..."
- makedir rad:s
- makedir rad:s/Common_Apps
- copy all s:Common_Apps to :s/Common_Apps quiet
- copy rexx:RExecute.rexx to :RExecute.rexx quiet
- echo "...copy completed."
- endif
- endif
- ;
- run rx RExecute
-